home *** CD-ROM | disk | FTP | other *** search
/ BUG 1 / BUGCD1996_0708.ISO / pc / util / minilin / minilin.exe / USR / LIB / SETUP / SETQUICK.{_C < prev    next >
Text File  |  1994-02-02  |  967b  |  24 lines

  1. #!/bin/sh
  2. dialog --title "CHANGE INSTALL MODE" --menu "There are two basic modes \
  3. of installation, QUICK and VERBOSE. In VERBOSE mode, you will be given \
  4. a description of each optional package as it is about to be installed, \
  5. and will be asked if you wish to install it. In QUICK mode, you are only \
  6. asked once at the beginning of each disk set. QUICK mode does not give \
  7. as complete a description of each package, so beginners should probably \
  8. stick to VERBOSE mode at first. If you use QUICK mode, it won't matter \
  9. what kind of tagfiles you specify later - you will be prompted to choose \
  10. at the start of each disk series. Which mode would you like to use?" \
  11. 18 70 2 \
  12. "VERBOSE" "Use verbose installation mode" \
  13. "QUICK" "Use quick and terse install mode" 2> /tmp/SeTreturn
  14. if [ $? = 1 -o $? = 255 ]; then
  15.  rm -f /tmp/SeTreturn
  16.  exit
  17. fi
  18. if [ "`cat /tmp/SeTreturn`" = "VERBOSE" ]; then
  19.  rm -f /tmp/SeTQUICK
  20. else
  21.  touch /tmp/SeTQUICK
  22. fi
  23. rm -f /tmp/SeTreturn
  24.